home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / HandHeldPCPro30 / sdk.exe / Jupiter SDK / data1.cab / ATL_Samples / countctn / countdlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-02-19  |  1.4 KB  |  55 lines

  1. // CountDlg.h : header file
  2. //
  3. //{{AFX_INCLUDES()
  4. #include "counter.h"
  5. //}}AFX_INCLUDES
  6.  
  7. #if !defined(AFX_COUNTDLG_H__1113B1B8_41BA_11D1_9307_00600820B4FF__INCLUDED_)
  8. #define AFX_COUNTDLG_H__1113B1B8_41BA_11D1_9307_00600820B4FF__INCLUDED_
  9.  
  10. #if _MSC_VER >= 1000
  11. #pragma once
  12. #endif // _MSC_VER >= 1000
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CCountctnDlg dialog
  16.  
  17. class CCountCtnDlg : public CDialog
  18. {
  19. // Construction
  20. public:
  21.     CCountCtnDlg(CWnd* pParent = NULL);    // standard constructor
  22.  
  23. // Dialog Data
  24.     //{{AFX_DATA(CCountctnDlg)
  25.     enum { IDD = IDD_COUNTCTN_DIALOG };
  26.     CCounter m_Counter;
  27.     int        m_nMaxCounter;
  28.         // NOTE: the ClassWizard will add data members here
  29.     //}}AFX_DATA
  30.  
  31.     // ClassWizard generated virtual function overrides
  32.     //{{AFX_VIRTUAL(CCountctnDlg)
  33.     protected:
  34.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  35.     //}}AFX_VIRTUAL
  36.  
  37. // Implementation
  38. protected:
  39.     HICON m_hIcon;
  40.  
  41.     // Generated message map functions
  42.     //{{AFX_MSG(CCountCtnDlg)
  43.     virtual BOOL OnInitDialog();
  44.     afx_msg void OnStart();
  45.     afx_msg void OnSetMaxCounter();
  46.     afx_msg void OnClose();
  47.     //}}AFX_MSG
  48.     DECLARE_MESSAGE_MAP()
  49. };
  50.  
  51. //{{AFX_INSERT_LOCATION}}
  52. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  53.  
  54. #endif // !defined(AFX_COUNTDLG_H__1113B1B8_41BA_11D1_9307_00600820B4FF__INCLUDED_)
  55.